/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

body {
    margin: 0px;
    overflow: hidden;
}

#v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }

/* Dark Theme */

.v3d-simple-preloader-background {
    background-color: #fffbfb;
}
.v3d-simple-preloader-logo {
    background-image: url("media/logo.png");
    background-size: cover;
}
.v3d-simple-preloader-container {
    filter: drop-shadow(0px 0px 4px #e08206);
}


.tutorial{
    pointer-events: none;
    position: absolute;
    bottom: 30px;
    width:260px;
    left:calc(50vw - 130px);
    text-align: center;
}
.tutorial .image.drag{
    display: inline-block;
    width: 80px;
    height: 70px;
    background: transparent url(media/tutorial01.png) no-repeat 50%;
    background-position-x: 50%;
    background-position-y: center;
    background-size: 80px 70px;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: transparent;
    background-size: 80px 70px;
    animation: dragAnim 2.2s infinite;
}
@keyframes dragAnim{

    0%  {margin-left:80px;}
    20% {margin-left:60px;}
    40% {margin-left:90px;}
    60% {margin-left:80px;}

    00% {margin-left: 60px;opacity: 0; transform: scale(1.1)}
    20% {margin-left: 60px;opacity: 1; transform: scale(1.1)}
    30% {margin-left: 60px;opacity: 1; transform: scale(1)}
    70% {margin-left:100px;opacity: 1; transform: scale(1)}
    90% {margin-left:100px;opacity: 0; transform: scale(1.1)}
    100%{margin-left:100px;opacity: 0; transform: scale(1.1)}
}

/*
.tutorial .image.click{
    background: url(../data/ui/tutorial02.png);
    animation: clickAnim 2s infinite;
}
@keyframes clickAnim{
    0%  {transform:scale(1)}
    12% {transform:scale(.9)}
    18% {transform:scale(.9)}
    36% {transform:scale(1.02)}
    50% {transform:scale(1)}
}
*/

.tutorial .text{
    margin-top:10px;
    color: rgb(0, 0, 0);
}



